From 2c8291b107807cc6000a2aff4fd412e6f584fdab Mon Sep 17 00:00:00 2001 From: robertl Date: Tue, 26 Nov 2002 17:47:50 +0000 Subject: [PATCH] Add multi-cache icons for Magellan. --- gpsbabel/gpx.c | 1 + gpsbabel/magproto.c | 7 +++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/gpsbabel/gpx.c b/gpsbabel/gpx.c index 7859258c8..fffdf0523 100644 --- a/gpsbabel/gpx.c +++ b/gpsbabel/gpx.c @@ -119,6 +119,7 @@ gs_type_mapping{ const char *name; } gs_type_map[] = { { gt_traditional, "Traditional cache" }, + { gt_multi, "Multi-Cache" }, { gt_virtual, "Virtual cache" } }; static diff --git a/gpsbabel/magproto.c b/gpsbabel/magproto.c index bc8a85991..6d6aa60bf 100644 --- a/gpsbabel/magproto.c +++ b/gpsbabel/magproto.c @@ -141,8 +141,8 @@ static icon_mapping_t map330_icon_table[] = { { "an", "winery" }, { "ao", "wreck" }, { "ap", "zoo" }, - { "ah", "Virtual cache"}, - { "an", "Event"}, + { "ah", "Virtual cache"}, /* Binos: becuase you "see" them. */ + { "an", "Multi-Cache"}, /* Winery: grapes 'coz they "bunch" */ { NULL, NULL } }; @@ -986,6 +986,9 @@ mag_waypt_pr(const waypoint *waypointp) case gt_virtual: icon_token = mag_find_token_from_descr("Virtual cache"); break; + case gt_multi: + icon_token = mag_find_token_from_descr("Multi-Cache"); + break; default: break; -- 2.30.2